obj1 < obj2

Less-than operator. Returns true if object obj1 is smaller than object obj2.
If the compared objects are strings, the function uses the lexicographical order implemented by the java language.


Example


3 < 4

true

"a"<"z"

true